SPB Git forge

spb/immbot-ai

Public
1commits 1branches 0releases
1.5 MBsize
maindefault branch
20 days agolast push
TypeScript 98.3% CSS 0.9% Shell 0.7%
366 B · 10 lines tsx
Raw Blame History
1// Tableau de progression du cours.2import { ProgressDashboard } from "@/components/learning/progress-dashboard";34export const metadata = { title: "Progression" };56export default async function ProgressionPage({ params }: { params: Promise<{ course: string }> }) {7  const { course } = await params;8  return <ProgressDashboard course={course.toLowerCase()} />;9}10